home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
600 Games
/
600games.iso
/
Aventura
/
Squeaky.swf
/
scripts
/
frame_150
/
PlaceObject2_459_90
/
CLIPACTIONRECORD onClipEvent(enterFrame).as
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2005-08-04
|
452 b
|
22 lines
onClipEvent(enterFrame){
if(_root.hero._y > 345 && _root.alive == "yes")
{
if(this._x < _root.hero._x)
{
this._x += 5;
this.gotoAndStop("right");
}
else
{
this._x -= 5;
this.gotoAndStop("left");
}
if(_root.hero.shape.hitTest(this.heart))
{
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}